Skip to main content

Get Project

AutomatR.Jira.Activities.GetProject

The "Get Project" activity in AutomatR's Jira package utilizes the Jira API to retrieve details about a specific project based on either the project key or ID. This activity is useful for obtaining information about a Jira project, such as its name, key, and other relevant details.

Properties

NameDescription
Input
Project KeyEnter the project key for which project details are required. String variables containing the project key.
Project IDEnter the project ID for which project details are required. String variables containing the project ID.
Misc
Display NameThe display name of the activity. This field supports only strings or String variables.
Optional
DelaySpecifies the amount of time (in seconds) to wait before executing the "Get Project" activity. This can be useful for handling synchronization issues. Integer variables containing the delay duration. Ex.: If the amount of time is 1000 milliseconds or 1 sec, i.e., 1.
Output
ResultOutputs an object listing all the project details. Variables of relevant types (e.g., JiraAllProjects) to store the project details.

How to use:

  1. Drag and drop the "Get Project" activity onto the workflow.
  2. Optionally, configure the delay.
  3. Provide either the project key or project ID.
  4. Execute the workflow to retrieve details about the specified Jira project.

Example: Consider an example where the "Get Project" activity is used to obtain details about a Jira project with the project key "PROJ123":

Get Project:
Project Key: "PROJ123"
Result: projectDetails

In this example, the activity fetches details about the Jira project with the key "PROJ123". The result, which includes various project details, is stored in the variable "projectDetails" for further handling in the workflow.